home *** CD-ROM | disk | FTP | other *** search
/ Erect Magazine 15 / Erect Magazine 15.iso / mac / P_Bro.DIR / 00044.ls < prev    next >
Encoding:
Text File  |  1996-07-11  |  1.6 KB  |  53 lines

  1. on startMovie
  2.   put 1 into field "PhotoCUR_T"
  3. end
  4.  
  5. on dragpanel _mouseh, _mousev
  6.   repeat while the stillDown
  7.     if (the mouseH <> _mouseh) or (the mouseV <> _mousev) then
  8.       set moveh to _mouseh - the mouseH
  9.       set _mouseh to the mouseH
  10.       set movev to _mousev - the mouseV
  11.       set _mousev to the mouseV
  12.       set temph to the locH of sprite 5 - moveh
  13.       set tempv to the locV of sprite 5 - movev
  14.       set minh to temph - (the width of sprite 5 / 2)
  15.       set maxh to temph + (the width of sprite 5 / 2)
  16.       set minv to tempv - (the height of sprite 5 / 2)
  17.       set maxv to tempv + (the height of sprite 5 / 2)
  18.       if minh < 0 then
  19.         set temph to the width of sprite 5 / 2
  20.       end if
  21.       if maxh > 640 then
  22.         set temph to 640 - (the width of sprite 5 / 2)
  23.       end if
  24.       if minv < 20 then
  25.         set tempv to (the height of sprite 5 / 2) + 20
  26.       end if
  27.       if maxv > 480 then
  28.         set tempv to 480 - (the height of sprite 5 / 2)
  29.       end if
  30.       set moveh to the locH of sprite 5 - temph
  31.       set movev to the locV of sprite 5 - tempv
  32.       repeat with n = 5 to 17
  33.         set the locH of sprite n to the locH of sprite n - moveh
  34.         set the locV of sprite n to the locV of sprite n - movev
  35.       end repeat
  36.       updateStage()
  37.     end if
  38.   end repeat
  39. end
  40.  
  41. on readpict _groupnum, _pagenum
  42.   set fname to the pathName & "PHOTO:PICT:PHOTO" & _groupnum & ":P" & _pagenum & ".PIC"
  43.   set myp to fileio(mnew, "read", fname)
  44.   if objectp(myp) then
  45.     set the picture of cast "PictCast" to myp(mreadpict)
  46.     myp(mdispose)
  47.     return 1
  48.   else
  49.     beep()
  50.     return 0
  51.   end if
  52. end
  53.